-
-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add osgi metadata #45
base: main
Are you sure you want to change the base?
Conversation
</executions> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The official guide seems to recommend a different approach:
Where does your approach come from, and what is the difference?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried the standard approach and it was adding to many exports to the MANIFEST, feel free to try it out locally
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I meant these bits:
<supportedProjectTypes>
<supportedProjectType>jar</supportedProjectType>
<supportedProjectType>bundle</supportedProjectType>
</supportedProjectTypes>
...
<executions>
<execution>
<id>manifest</id>
<goals>
<goal>manifest</goal>
</goals>
<configuration>
<supportIncrementalBuild>true</supportIncrementalBuild>
</configuration>
</execution>
<execution>
<id>bundle</id>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
I've pushed commits to the branch to follow the linked instructions above, and it still produces the same end result. Note that before, it looks like it built the jar file twice:
[INFO] --- jar:3.4.1:jar (default-jar) @ autolink ---
[INFO] Building jar: /Users/robinst/private/autolink-java/target/autolink-0.11.1-SNAPSHOT.jar
[INFO]
[INFO] --- bundle:5.1.9:bundle (bundle) @ autolink ---
[INFO] Building bundle: /Users/robinst/private/autolink-java/target/autolink-0.11.1-SNAPSHOT.jar
[INFO] Writing manifest: /Users/robinst/private/autolink-java/target/classes/META-INF/MANIFEST.MF
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
After:
[INFO] --- jar:3.4.1:jar (default-jar) @ autolink ---
[INFO] Building jar: /Users/robinst/private/autolink-java/target/autolink-0.11.1-SNAPSHOT.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zspitzer Let me know if that works for you, and happy to proceed with this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zspitzer Ping?
Remove unnecessary supportedProjectTypes
Hi There,
I've filed a PR for Commonmark which uses your nice library!
commonmark/commonmark-java#359
as I'm adding some Commmonmark extensions to Lucee
lucee/Lucee#2473
This PR adds the maven-bundle-plugin to the build to add the OSGI metadata required